home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / TrashHack / DrawStringPatch.a < prev    next >
Text File  |  1995-06-24  |  537b  |  30 lines

  1.     ; TrashHack.a
  2.     ; by Jase 
  3.     
  4.     ; this patch checks to see whether the Finder is drawing the "Trash"
  5.     ; if so, the string is butchered to represent the size of the trash in K
  6.     
  7.     INCLUDE 'SysEqu.a'
  8.     INCLUDE 'ToolEqu.a'
  9.     INCLUDE 'Traps.a'
  10.  
  11.     IMPORT    TRASHHACK
  12.  
  13. DRAWSTRINGPATCH        proc export
  14.  
  15.     ; arrive here when someone calls DrawString (trap A884)
  16.     
  17.     ; go off and do the biz
  18.     move.l        $4(sp), -(sp)
  19.     jsr            TRASHHACK
  20.     
  21. Finish
  22.  
  23.     ; jump off to the original patch destination
  24.     ; patched by installer
  25.     dc.w            $4ef9
  26.     dc.w            $ffff
  27.     dc.w            $ffff
  28.  
  29.     end
  30.